home *** CD-ROM | disk | FTP | other *** search
/ Windows Expert / Windows Expert.iso / windownt / mkecr5.zip / TXTSETUP.OEM < prev   
Text File  |  1993-07-24  |  4KB  |  156 lines

  1. #
  2. # format for txtsetup.oem.
  3. #
  4. # General format:
  5. #
  6. # [section]
  7. # key = value1,value2,...
  8. #
  9. #
  10. # The hash ('#') introduces a comment.
  11. # Strings with embedded spaces, commas, or hashes should be double-quoted
  12. #
  13.  
  14.  
  15. [Disks]
  16.  
  17. # Your driver distribution may include one disk or many disks.
  18. # This section lists the disks in the distribution set.
  19. #
  20. # <description> is a descriptive name for a disk, used when
  21. #   prompting for the disk.  This should be a quoted string,
  22. #   like "Company XYZ Mouse Disk #1"
  23. #
  24. # <tagfile> is a file whose presence allows setup to recognize
  25. #   that the disk is inserted. This should be a path from the root,
  26. #   but may not include a drivespec.  Example: \xyzmou1.tag
  27. #
  28. # <directory> is where the files are located on the disk. This should
  29. #   be a path from the root but may not include a drivespec.
  30. #   Example: \ (root directory)
  31.  
  32. #d1 = <description>,<tagfile>,<directory>
  33. #d2 = <description>,<tagfile>,<directory>
  34. #    .
  35. #    .
  36. #    .
  37.  
  38. mked1 = "mke", \mkedisk, \
  39.  
  40.  
  41. [Defaults]
  42.  
  43. # This section lists the default selection for each component
  44. # supported by this txtsetup.oem.  If a line is not present for
  45. # a component, the default is the first item in the [<component_name>]
  46. # section (see below).
  47. #
  48. # <component_name> is one of computer, display, keyboard, mouse,
  49. #   "keyboard layout", or scsi.
  50. #
  51. # <id> is a unique (within the component) string to be associated
  52. #   with an option.
  53. #
  54. # Example:
  55. #
  56. #   mouse = xyzmou1
  57. #
  58.  
  59. #<component_name> = <id>
  60.  
  61. scsi = mke
  62.  
  63.  
  64. #[<component_name>]
  65. [scsi]
  66.  
  67. # This section lists the options available for a particular component.
  68. #
  69. # <id> is the unique string for the option.  For the computer component,
  70. #      if this string ends in "_up", setup copies the uniprocessor kernel;
  71. #      if this string ends in "_mp", setup copies the multiprocessor kernel;
  72. #      if it ends in neither, the results are unspecified (you may
  73. #      get either kernel).
  74. #
  75. # <description> is a text string, presented to the user in a menu.
  76. #
  77. # Example:
  78. #
  79. #   [mouse]
  80. #   xyzmou1 = "Company XYZ Mouse type 1"
  81. #
  82. #<id> = <description>
  83. #    .
  84. #    .
  85. #    .
  86.  
  87. mke = "Matsushita Kotobuki Cr-52x/56x"
  88.  
  89. #[Files.<component_name>.<id>]
  90. [Files.scsi.mke]
  91.  
  92. # This section lists the files that should be copied if the user
  93. # selects a particular component option.
  94. #
  95. # <file_type> is one of driver, port, class, dll, hal, inf, or detect.
  96. #   (see descriptions below).
  97. #
  98. # <source_disk> identifies where the file is to be copied from, and must
  99. #   match en entry in the [Disks] section.
  100. #
  101. # <filename> is the name of the file. This will be appended to the
  102. #   directory specified for the disk in the [Disks] section to form the
  103. #   full path of the file on the disk.
  104. #
  105. # <keyname> is the name of the key to be created in the registry services
  106. #   list for this file, if the file is of type driver, port, or class.
  107. #   This value will be used to form [Config.<keyname>] section names
  108. #   (see below).
  109. #
  110. # Example:
  111. #
  112. #   [Files.mouse.xyzmou1]
  113. #   port = d1,xyzmou1p.sys,xyzmou1p
  114. #
  115. #<file_type> = <source_disk>,<filename>,<keyname>
  116. #    .
  117. #    .
  118. #    .
  119.  
  120. driver = mked1, mkecr5xx.sys, mkecr5xx
  121. inf    = mked1, oemsetup.inf
  122.  
  123. [Config.mkecr5xx]
  124.  
  125. #[Config.<keyname>]
  126. # This section specifies values to be set in the registry for
  127. # particular component options.  Required values in the services\<keyname>
  128. # key are created automatically -- use this section to specify additional
  129. # keys and value to be created in services\<keyname>.
  130. #
  131. # <key_name> is relative to the services node for this device.
  132. #   If it is empty (ie, ""), then it refers to the services node itself.
  133. #   If specified, the key is created.
  134. #
  135. # <value_name> specifies the value to be set within the key.
  136. #
  137. # <value_type> is a string like REG_DWORD.  See below.
  138. #
  139. # <value> specifies the actual value; its format depends on <value_type>
  140. #   See below.
  141. #
  142. # Example:
  143. #
  144. #   [Config.xyzmou1p]
  145. #   value = "",MyValue,REG_DWORD,0
  146. #   value = NewKey,NewValue,REG_SZ,"this is a value"
  147. #
  148. #value = <key_name>,<value_name>,<value_type>,<value>...
  149. #    .
  150. #    .
  151. #    .
  152.  
  153. value = "", ErrorControl, REG_DWORD, 1
  154. value = "", Group, REG_SZ, "SCSI miniport"
  155. value = "", Start, REG_DWORD, 0
  156. value = "", Type,  REG_DWORD, 1